home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
formre1r
/
frmtest.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-08-19
|
1KB
|
51 lines
VERSION 5.00
Begin VB.Form frmTest
BorderStyle = 4 'Fixed ToolWindow
Caption = "Current App.Path"
ClientHeight = 1170
ClientLeft = 45
ClientTop = 285
ClientWidth = 3045
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1170
ScaleWidth = 3045
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin VB.TextBox txtAppValue
Height = 315
Index = 2
Left = 60
TabIndex = 2
Top = 780
Width = 2895
End
Begin VB.TextBox txtAppValue
Height = 315
Index = 1
Left = 60
TabIndex = 1
Top = 420
Width = 2895
End
Begin VB.TextBox txtAppValue
Height = 315
Index = 0
Left = 60
TabIndex = 0
Top = 60
Width = 2895
End
Attribute VB_Name = "frmTest"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
txtAppValue(0).Text = App.Path
txtAppValue(1).Text = App.EXEName
txtAppValue(2).Text = Command()
End Sub